home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE15 / CPPCLASS / OWLDEL / Owlclass.dpr < prev    next >
Encoding:
Text File  |  1996-07-17  |  246 b   |  16 lines

  1. program Owlclass;
  2.  
  3. uses
  4.   Forms,
  5.   Owlu in 'OWLU.PAS' {Form1},
  6.   comOWL in 'comOWL.pas',
  7.   COMslidr in 'COMslidr.pas',
  8.   delBase in 'delBase.pas';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.